home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2 - Developers' Solutions
/
Delphi 2 Developers' Solutions.iso
/
dds
/
chap07
/
howto06
/
delphi10
/
soundex
/
soundtst.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-09-17
|
235 b
|
14 lines
program Soundtst;
uses
Forms,
Soundfrm in 'SOUNDFRM.PAS' {EmployeeSearchForm},
Soundex in 'SOUNDEX.PAS';
{$R *.RES}
begin
Application.CreateForm(TEmployeeSearchForm, EmployeeSearchForm);
Application.Run;
end.